home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d21
/
dvglue.arc
/
TVPICON.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-01-09
|
1KB
|
32 lines
/*================================================*/
/* TVPICON.C */
/* */
/* (c) Copyright 1988 Ralf Brown */
/* All Rights Reserved */
/* May be freely copied for noncommercial use, */
/* provided that this copyright notice remains */
/* intact and any changes are indicated in the */
/* comment blocks preceding functions */
/*================================================*/
#include "tvapi.h"
/*================================================*/
/* TVptr_icon set pointer's display symbol */
/* Ralf Brown 5/6/88 */
/*================================================*/
void pascal TVptr_icon(OBJECT pointer, char symbol)
{
PARMLIST1 p ;
if (pointer)
{
p.num_args = 1 ;
p.arg[0] = (DWORD) symbol ;
TVsendmsg(SETICON_MSG, TOS, pointer, (PARMLIST *)&p) ;
}
}
/* End of TVPICON.C */